-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor:notice 날짜 포맷팅 수정 #159
Conversation
아 왜 마크다운 문법에 맞게 썼는데 안됨 ㅜㅜ |
성공! |
하... |
로컬에선 돌아가는데 왜 안된다는거니 |
성공~! |
ㅋㅋㅋㅋㅋ고생하셨네요.. 근데 하나 궁금한게 포멧을 db에 저장할 때부터 바꿔서 저장하면 되지 않을까요? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
코멘트 확인 부탁합니다-!
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yy/MM/dd HH:mm"); | ||
return dateTime.format(formatter); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
이 부분이 이해가 잘 안됩니다 test코드 찾아 봤는데 검증이 되지 않고 있다고 말씀하신 부분이 아랫 부분이 맞나요?
맞다면 DB에는 LocalDateTime으로 저장하지만 검증은 포매팅한 결과로 검증해서 잘못됐다고 말씀하신건지 이해가 잘 안됩니다..ㅜㅜㅜ |
일단 저 코드 부분 말한 것은 맞습니다! 한글로 출력되는 오류가 테스트에서 검증되지 못했던 이유는 지금처럼 테스트를 진행하면 공지의 생성 날짜 형태가 저 포맷팅 메소드를 거치는지는 테스트가 되지만, 그 포맷팅 메소드에서 우리가 원하는 형태로 변환해주는지는 모르기 때문이죠! 아직 이해 안되는 부분 있다면 말씀해주세용 |
이해됐습니다!! 감사합니다 ㅎㅎㅎ |
이 pr 머지 해도 되겠습니까?! |
넴 제가 머지하겠습니다~ |
📌 Related Issue
#157
🚀 Description
📢 Review Point
📚Etc (선택)
원래 DateFormatUtil의 함수 포맷만 변경하려 했는데 solution에서 쓰이고 있길래 공지로 따로 만들어서 했습니다 어렵네요..
[Q] 이 흐름이 궁금합니다 Notice를 만들면 DB에
이렇게 저장을 해놓는거잖아요? 저장 후에 클라에서 요청을 받으면
Response를
이렇게 보내 주는 흐름이 맞는지.. 궁금합니다